From 014165151fcd3a2684dbd94aeb3fe517d87e909f Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Tue, 19 Jul 2011 15:54:09 +0200 Subject: [PATCH] css: Use the correct free function --- gtk/gtkcssparser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gtkcssparser.c b/gtk/gtkcssparser.c index 1b2710d047..e9fe6a4fdb 100644 --- a/gtk/gtkcssparser.c +++ b/gtk/gtkcssparser.c @@ -662,7 +662,7 @@ gtk_css_parser_read_symbolic_color_function (GtkCssParser *parser, child2 = _gtk_css_parser_read_symbolic_color (parser); if (child2 == NULL) { - g_object_unref (child1); + gtk_symbolic_color_unref (child1); return NULL; } } -- 2.30.2